* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F9F7FC !important;
}

.whole-page-wrapper {
    background-color: #F9F7FC;
    max-width:3200px;
    margin-left:auto;
    margin-right:auto;
}

.hero-image-div {
    position: relative;
    text-align: center ;
}

.hero-image-div img {
    object-fit: cover;
    min-height: 300px;
    max-height: 1160px;
}

.hero-image-div .hero-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 3px 3px 6px black;
    color: white;
}

.form-header {
    background-color: #d26e63;
    padding: 15px 0 15px 0;
    color: white;
    text-align: center;
    box-shadow: 0px 3px 10px 4px rgb(165 140 145);
}

.drop-element {
    height: 37px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.form-section {
    overflow: hidden;
    margin-top: 165px;
}

.form-section .form-section-row {
    justify-content: center;
    --bs-gutter-x: 6rem;
}

.form-section .form-group {
    margin: 20px;
}

.form-group .form-control {
    font-family: 'Poppins', serif;
    font-weight: 300;
}

.form-group .form-control:focus {
    border-color: #00000042;
    box-shadow: 0px 5px 5px 2px #a79d9dc9;
    -webkit-box-shadow: 0px 5px 5px 2px #a79d9dc9;
    -webkit-appearance: none;
}

.form-section button {
    margin: 120px auto 120px auto;
    font-family: 'Poppins', serif;
    font-size: 32px;
    display: block;
    width: 300px;
    height: 70px;
    background-color: #f7c851;
    color: white;
    transition: .5s ease;
    border: 1px solid transparent;
}

.form-section button:hover {
    background-color: transparent;
    border: 1px solid #f7c851;
    color: #f7c851;
}

.form-section .col-xl-4:nth-child(2){
    vertical-align: middle;
    display: contents;
}

.wrapper {
    background-image: url("../Assets/ContactUs/E-95.png");
    background-size: cover;
    background-position: bottom;
}

#animationContainer svg {
    max-width: 550px;
    max-height: 550px;
}

@media screen and (max-width: 1200px) {
    #animationContainer {
        display: flex; 
        justify-content: center;
    }

    .form-section button {
        font-size: 26px;
        width: 260px;
        height: 55px;
    }

    .form-section {
        margin-top: 100px;
    }

    .form-section .form-group {
        padding-left: 50px;
        padding-right: 50px;
    }

    .form-section .col-xl-4:nth-child(2){
        display: block;
    }
}

@media screen and (max-width: 568px) {
    .submit-button {
        font-size: 22px;
        width: 200px;
        height: 45px;
    }

    .form-section .form-group {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 437px) {
    .hero-image-div img {
        min-height: auto;
    }
}





